home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
smfdoor
/
frmfile.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-08-13
|
6KB
|
202 lines
VERSION 5.00
Begin VB.Form frmFile
BackColor = &H80000012&
BorderStyle = 1 'Fixed Single
Caption = "File"
ClientHeight = 3975
ClientLeft = 4485
ClientTop = 1515
ClientWidth = 1755
Icon = "frmFile.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3975
ScaleWidth = 1755
Begin VB.CommandButton cmdDone
Caption = "Done"
Height = 375
Left = 120
MousePointer = 10 'Up Arrow
TabIndex = 0
Top = 3480
Width = 1335
End
Begin VB.Label lblExit
BackColor = &H80000012&
Caption = "Exit"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 7
Top = 3000
Width = 1215
End
Begin VB.Label lblPrint
BackColor = &H80000012&
Caption = "Print"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 6
Top = 2520
Width = 1215
End
Begin VB.Label lblSaveAs
BackColor = &H80000012&
Caption = "Save As"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 5
Top = 2040
Width = 1215
End
Begin VB.Label lblSave
BackColor = &H80000012&
Caption = "Save"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 4
Top = 1560
Width = 1215
End
Begin VB.Label lblClose
BackColor = &H80000012&
Caption = "Close"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 3
Top = 1080
Width = 1215
End
Begin VB.Label lblOpen
BackColor = &H80000012&
Caption = "Open"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 2
Top = 600
Width = 1215
End
Begin VB.Label lblNew
BackColor = &H80000012&
Caption = "New"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 360
MousePointer = 10 'Up Arrow
TabIndex = 1
Top = 120
Width = 1215
End
Attribute VB_Name = "frmFile"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdDone_Click()
frmFile.Hide
frmHElp.Show
End Sub
Private Sub lblClose_Click()
frmClose.Show
frmFile.Hide
End Sub
Private Sub lblExit_Click()
frmExit.Show
frmFile.Hide
End Sub
Private Sub lblNew_Click()
frmNew.Show
frmFile.Hide
End Sub
Private Sub lblOpen_Click()
frmOpen.Show
frmFile.Hide
End Sub
Private Sub lblPrint_Click()
frmPrint.Show
frmFile.Hide
End Sub
Private Sub lblSave_Click()
frmSave.Show
frmFile.Hide
End Sub
Private Sub lblSaveAs_Click()
frmSave.Show
frmFile.Hide
End Sub